Code or environment configuration problems?

Source: Internet
Author: User
The following code is run in CentOS, NGINX, PHP-FPM environment, the strange is that only run in the default directory, if you change the directory or copy to another mirror server does not work, I don't know whether it is a code issue or a configuration issue? . ClassAsyncextendsThre... the following code is run in CentOS, NGINX, PHP-FPM environment, the strange is that only run in the default directory, if you change the directory or copy to another mirror server does not work, I don't know whether it is a code issue or a configuration issue? .

Class Async extends Thread {

    public $username;      public $totalfee;      public $out_trade_no;      public $md5string;      public $cur;    public function __construct($username, $totalfee, $out_trade_no, $md5string, $cur) {       $this->username = $username;       $this->totalfee = $totalfee;        $this->out_trade_no = $out_trade_no;        $this->md5string = $md5string;       $this->cur = $cur;    }    public function run() {        $logHandler = new CLogFileHandler("log".date('Y-m-d').'.log');        Log::Init($logHandler, 15);        $noticeStatus = queryStatus($this->out_trade_no);        Log::DEBUG("beginning call b async, curr status is ".$noticeStatus);            $interval = 60;        $idx = 2;        while($noticeStatus == 0 and $idx <= 10){            Log::DEBUG($idx." times call b ");            callBserver($this->username, $this->totalfee, $this->out_trade_no, $this->md5string, $this->cur);            sleep($interval);            $idx++;            $noticeStatus = queryStatus($this->out_trade_no);            Log::DEBUG($this->out_trade_no." notice status is ".$noticeStatus);        }    }}$thread = new Async($username, $total_fee, $out_trade_no, $md5string, $cur);$thread->start();Log::DEBUG("thread begin....");    

Reply content:

The following code is run in CentOS, NGINX, PHP-FPM environment, the strange is that only run in the default directory, if you change the directory or copy to another mirror server does not work, I don't know whether it is a code issue or a configuration issue? .

Class Async extends Thread {

    public $username;      public $totalfee;      public $out_trade_no;      public $md5string;      public $cur;    public function __construct($username, $totalfee, $out_trade_no, $md5string, $cur) {       $this->username = $username;       $this->totalfee = $totalfee;        $this->out_trade_no = $out_trade_no;        $this->md5string = $md5string;       $this->cur = $cur;    }    public function run() {        $logHandler = new CLogFileHandler("log".date('Y-m-d').'.log');        Log::Init($logHandler, 15);        $noticeStatus = queryStatus($this->out_trade_no);        Log::DEBUG("beginning call b async, curr status is ".$noticeStatus);            $interval = 60;        $idx = 2;        while($noticeStatus == 0 and $idx <= 10){            Log::DEBUG($idx." times call b ");            callBserver($this->username, $this->totalfee, $this->out_trade_no, $this->md5string, $this->cur);            sleep($interval);            $idx++;            $noticeStatus = queryStatus($this->out_trade_no);            Log::DEBUG($this->out_trade_no." notice status is ".$noticeStatus);        }    }}$thread = new Async($username, $total_fee, $out_trade_no, $md5string, $cur);$thread->start();Log::DEBUG("thread begin....");    

Are you sure you have copied all the Code, including the files of the class inherited by this class

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.