本文整理匯總了PHP中core\Config::IP方法的典型用法代碼示例。如果您正苦於以下問題:PHP Config::IP方法的具體用法?PHP Config::IP怎麽用?PHP Config::IP使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類core\Config
的用法示例。
在下文中一共展示了Config::IP方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: acceptCredentials
public function acceptCredentials($key, $token)
{
$q = $this->db->prepare('SELECT id from credentials WHERE api_key = :key AND api_token = :token');
$q->execute(array('key' => $key, 'token' => $token));
$data = $q->fetch();
$q->closeCursor();
if ($data !== false) {
$q = $this->db->prepare('UPDATE credentials SET last_timestamp = :now, last_ip = :ip, count = count + 1 WHERE id = :id');
$q->execute(array('id' => $data['id'], 'now' => time(), 'ip' => Config::IP()));
$q->closeCursor();
}
return (bool) $data;
}
示例2: registerLogin
public function registerLogin()
{
if ($this->exists()) {
$q = $this->db->prepare('UPDATE users SET last_login = :last_login, last_ip = :last_ip WHERE id = :id');
$row_updated = $q->execute(array('last_login' => time(), 'last_ip' => Config::IP(), 'id' => $this->id));
$q->closeCursor();
return $row_updated == 1;
}
}
示例3: Mood
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
Code source hosted on https://github.com/Devenet/MoodPicker
*/
use Utils\Cookie;
use Utils\Session;
use Picker\Mood;
use Picker\MoodLevel;
use Core\Config;
if (isset($_POST['mood']) && $this->acceptToken()) {
$_POST['mood'] = $_POST['mood'] + 0;
if (!MoodLevel::isValidValue($_POST['mood'])) {
$this->errorPage('Invalid value', 'The given value for your current mood is unknow.');
}
if (!Cookie::Exists('voted') && !Session::Exists('voted')) {
$m = new Mood($_POST['mood'], time(), Config::IP());
$m->save();
Cookie::add('voted', true, Cookie::HOUR * 2);
Session::add('voted', true);
header('Location: ./review');
exit;
}
$this->errorPage('Already voted', 'An entry has already been enregistred from your computer. <br />You have to wait some times before submitting an other mood.');
} else {
$this->getToken();
$this->assign('good', MoodLevel::GOOD);
$this->assign('bad', MoodLevel::BAD);
}
示例4: submit
public function submit($data)
{
if (empty($data)) {
$this->error(400);
}
try {
$data = json_decode($data, true);
$this->checkToken($data);
if (!isset($data[self::P_MOOD]) || empty($data[self::P_MOOD])) {
$this->error(422, self::E_EMPTY_MOOD);
}
if (!MoodLevel::isValidValue($data[self::P_MOOD] + 0)) {
$this->error(422, self::E_FORMAT_MOOD);
}
$m = new Mood($data[self::P_MOOD], time(), Config::IP());
$m->save();
$this->data['mood'] = $m->getMood();
$this->data['timestamp'] = $m->getTime();
$this->send();
} catch (\Exception $ex) {
$this->error(400);
}
}