草庐IT

this_call

全部标签

php - 不在对象上下文中时使用 $this - Laravel 4

我的Contact.php模型中有这两种方法:publicfunctiongetSubscribers($listId){return$this->withTrashed()->where(DB::raw("concat('',email*1)"),'!=',DB::raw('email'))->where('opt_out','0')->select('email')->chunk(1000,function($results)use($listId){$this->subscribeEmails($listId,$results);});}publicfunctionsubscri

php - 销售人员错误 : Element {}item invalid at this location

我正在使用以下代码通过php连接到salesforcerequire_once('SforcePartnerClient.php');require_once('SforceHeaderOptions.php');require_once('SforceMetadataClient.php');$mySforceConnection=newSforcePartnerClient();$mySforceConnection->createConnection("cniRegistration.wsdl");$loginResult=$mySforceConnection->login("

php - 使用 __call() 而不是 getter 和 setter 是否正确?

关于良好实践的主题,对需要getter和setter的类使用__call()是否正确?参见DoctrineEntity的示例:https://gist.github.com/devmatheus/10668172#file-sessao1-php我知道性能会受到影响,但这会减少编程时间,您怎么看? 最佳答案 如您所说,性能会降低,但更好的设计总是胜过性能。具有更多Ram和CPU的服务器并不像开发人员那样昂贵。如果您需要动态调用的方法,我认为这是一个很好的观点。,但是,它应该通过PHPDoc进行详细记录(它有助于IDE完成代码,开发人

PHP/SQLite3 : Fatal error: Call to undefined function sqlite_num_rows()

当我调用函数sqlite_num_rows时出现此错误。它一定不是依赖性问题,因为其他Sqlite函数正在运行。我能够打开连接并从数据库获取数据。 最佳答案 晚了4年,但我遇到了同样的问题,所以这是我为遇到同样问题的任何人提供的解决方案//$dbisthedatabasehandle$result=$db->query("SELECT*FROMtable_name");$rows=0;//setrowcounterto0while($row=$result->fetchArray()){$rows+=1;//+1tothecount

php - 在父类中使用 $this 仅显示子类中的父类属性

我有以下两个类。BMW类扩展了Car类。classCar{public$doors;public$wheels;public$color;public$size;publicfunctionprint_this(){print_r($this);}}classBMWextendsCar{public$company;public$modal;publicfunction__construct(){print_r(parent::print_this());}}$bmw=newBMW();$bmw->print_this();在上面的代码中,当我使用parent::print_this(

php - 从另一个类宽度 '$this' 调用类的静态方法

我遇到了一些问题。我想从另一个类调用类的static方法。类名和方法是动态创建的。做起来并不难:$class='className';$method='method';$data=$class::$method();但是,我想这样做classabc{staticpublicfunctionaction(){//somecode}}classxyz{protected$method='action';protected$class='abc';publicfunctiontest(){$data=$this->class::$this->method();}}如果我不将$this->cl

php - Laravel 5.2 curl_init() 抛出错误 "Call to undefined function"

我正在尝试使用curl在laravel中使用FCM,但出现错误。首先,我在我的一个Controller中编写了一个php代码:$first_name=$request->input('first_name');//FCMapiURL$url='https://fcm.googleapis.com/fcm/send';//api_keyavailableinFirebaseConsole->ProjectSettings->CLOUDMESSAGING->Serverkey$server_key='AIzaSyA1RyuAGGPASh_flFCwiyd9ZHEMYlhQOho';$tar

php - Laravel "Call to undefined method"仅在生产中发生

我有2个Controller函数,它们调用位于应用程序文件夹下的类的静态函数。Controller\UserResController.phppublicfunctionshow($id,Request$request){return\App\User::show($id,$request);}Conrtollers\Other\UserResController.phppublicfunctionshow($id,Request$request){//othercodesreturn\App\User::show($id,$request);}应用\用户.phppublicstati

php - 什么场景需要在php中使用call_user_func()

这个问题在这里已经有了答案:PHPcall_user_funcvs.justcallingfunction(8个答案)关闭4个月前。我不理解函数call_user_func(),因为我知道它是如何工作的,但我不确定为什么需要它或在什么情况下在php中使用它。就我而言,为什么不直接调用函数而不是用函数调用函数呢?谢谢!

php - 在 PHP 中使用 "this"和 "self"

Use$thistorefertothecurrentobject.Useselftorefertothecurrentclass.Inotherwords,use$this->memberfornon-staticmembers,useself::$memberforstaticmembers.http://board.phpbuilder.com/showthread.php?10354489-RESOLVED-php-class-quot-this-quot-or-quot-self-quot-keywordclassDemo{privatestatic$name;private