排序
解决Warning: file_get_contents(): SSL operation failed 报错
$stream_opts = [ 'ssl' => [ 'verify_peer'=>false, 'verify_peer_name'=>false, ] ]; $result = file_get_contents('https://api.laoknas.com/WorldMessageBoard/index.php', false, stream_c...
PHP代码判断访问者客户端
php代码实现判断访问者是移动端还是pc端。 /*移动端判断*/ function isMobile(){ // 如果有HTTP_X_WAP_PROFILE则一定是移动设备 if (isset ($_SERVER['HTTP_X_WAP_PROFILE'])) { return true; }...