鍍金池/ 問答/ PHP問答
維他命 回答

找到問題所在了,虛擬機(jī)的時(shí)間不對(duì),調(diào)過來就好了。

雨蝶 回答

你說的這個(gè)箭頭應(yīng)該是返回上一級(jí)吧

愛是癌 回答

三元運(yùn)算符為什么會(huì)不符合項(xiàng)目呢?其實(shí)三元運(yùn)算符是非常簡單的,否則就得閉包或直接先判斷結(jié)果再來拼接輸出

懶洋洋 回答

加啥索引都一樣,你要確保你的這個(gè)數(shù)值范圍不會(huì)太大,不然即使你建立了索引,但是 mysql 依然會(huì)進(jìn)行全表掃描。如果你要更高的索引效率,建議根據(jù)實(shí)際情況,創(chuàng)建合適的組合索引,會(huì)好些??s小可能的數(shù)值數(shù)量,避免全表查詢。

菊外人 回答

我記得nginx.conf默認(rèn)有幾條基礎(chǔ)的server規(guī)則,你把它都清掉,只留下include vhosts.conf試試~

附上我自己的配置:

nginx.conf

worker_processes 1;
error_log  logs/error.log;
pid        logs/nginx.pid;

events {
    worker_connections  1024;
}


http {
    include       mime.types;
    default_type  application/octet-stream;

    sendfile    on;
    tcp_nopush  on;
    keepalive_timeout 65;

    fastcgi_connect_timeout 300;
    fastcgi_send_timeout    300;
    fastcgi_read_timeout    300;
    fastcgi_buffer_size     128k;
    fastcgi_buffers 4 128k;
    fastcgi_busy_buffers_size 256k;
    fastcgi_temp_file_write_size 256k;

    gzip on;
    gzip_min_length  1k;
    gzip_buffers     4 32k;
    gzip_http_version 1.1;
    gzip_comp_level 2;
    gzip_types       text/plain application/x-javascript text/css application/xml;
    gzip_vary on;
    gzip_disable "MSIE [1-6].";

    server_names_hash_bucket_size 128;
    client_max_body_size     100m;
    client_header_buffer_size 256k;
    large_client_header_buffers 4 256k;

    include vhosts.conf;
}

vhosts.conf

server {
    listen       80;
    server_name  localhost;

    root    "X:/www";
    location / {
        index index.php;
        try_files $uri $uri/ /index.php?$args;
    }

    error_page 404              /404.html;
    error_page 500 502 503 504  /50x.html;

    location = /50x.html {
        root html;
    }

    location ~ \.php(.*)$  {
        fastcgi_pass   127.0.0.1:9000;
        fastcgi_index  index.php;
        include fastcgi_params;
        fastcgi_split_path_info  ^((?U).+\.php)(/?.+)$;
        fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_name;
        fastcgi_param  PATH_INFO  $fastcgi_path_info;
        fastcgi_param  PATH_TRANSLATED  $document_root$fastcgi_path_info;
        try_files $uri =404;
    }

    location ~ /\.(ht|svn|git) {
        deny all;
    }
}

(其實(shí)基本沒加什么,都是原來那些……)

1.跨域的話修改nginx配置,增加跨域配置

proxy_pass http://127.0.0.1:3000;

2.授權(quán)域名是后端地址,簡而言之就是調(diào)用微信授權(quán)的地址

離人歸 回答

1.你改的文件不對(duì)吧,不是php5.6.32.ini是php.ini
2.你的服務(wù)器是什么,apache的話請(qǐng)重啟apache,nginx的話,請(qǐng)重啟php-fpm

臭榴蓮 回答

你這個(gè)文件應(yīng)該是直接游覽器打開吧?

可以通過配一個(gè)靜態(tài)服務(wù)器跑比如puer,然后后臺(tái)配下cors

糖豆豆 回答

union,至于判斷哪個(gè)表標(biāo)題為空的事,還是交給編程語言去做吧

對(duì)于重復(fù)數(shù)據(jù)很多的列不合適簡建立索引,因?yàn)檫^濾后數(shù)據(jù)量仍然很大,先走索引在走表,所以很慢

兔寶寶 回答
server {
    listen 80;
    server_name index.test.com api.test.com admin.test.com;
    return 301 https://$host$request_uri;
}
server {
    listen 80 default_server;
    server_name _;
    return 404;
    access_log off;
}
悶油瓶 回答

似乎是windows系統(tǒng)才引起的,,我解決的方法是備份了磁盤然后重裝了一個(gè)系統(tǒng),,,之前弄了好久都沒解決,

1.php沒有編譯

2.

class B extends A
{
    public function e()
    {
        echo __CLASS__;
    }
}

等價(jià)于

class B
{
    public function f()
    {
        $this -> e();
    }
    public function e()
    {
        echo __CLASS__;
    }
}

這就是繼承的意義啊,不然我們要繼承干嘛使

落殤 回答

當(dāng)年,我還用PHP5的時(shí)候碰到過個(gè)問題
sudo apt-get install php5-json
安裝了這個(gè)包以后,莫名就好了,你是PHP7 試試 php7-josn,不知道包名是不是這樣寫