Tag: PHP的

PHP获取数组的最后3个元素

我有一个数组: [13] => Array ( [0] => joe [1] => 0 [14] => Array ( [0] => bob [1] => 0 ) [15] => Array ( [0] => sue [1] => 0 ) [16] => Array ( [0] => john [1] => 0 ) [17] => Array ( [0] => harry [1] => 0 ) […]

增加date到php当前date()

如何在PHP中将当前date添加到特定天数? 我已经得到当前date: $today = date('y:m:d'); 只需要将x天添加到它

更新时间戳(Laravel)

是否可以更新用户而不用触摸时间戳? 我不想完全禁用时间戳。 grtz

PHP中&和&&的区别

我对&和&&感到困惑。 我有两本PHP书。 一个说他们是一样的,但另一个说他们是不同的。 我以为他们也一样。 他们不一样吗?

在YouTube缩略图上移除4:3的黑色边框

例如,我有一个链接 http://img.youtube.com/vi/aOPGepdbfpo/0.jpg 对于YouTubevideo缩略图: 我想删除黑色的顶部和底部边框,所以我得到这样的图片: 可以使用PHP函数javascript / jQuery或者也许youtube api本身?

我怎样才能在Zend框架中获得当前的行动?

我的Zend Framework应用程序中有一个插件,它在每个请求之后检查login状态,如果用户的会话无效或过期,则将用户重新路由到login操作。 我想caching先前的请求操作,以便在尝试成功login后,我可以将它们redirect回到以前的请求。 我find了关于setActionController()方法的文档,但在“getActionController()”方法中找不到任何东西。 有一个存在吗? 如果是这样,有没有人有任何信息,他们可以链接到我呢? 如果没有,达到目标的最好方法是什么?

如何parsingSOAP XML?

SOAP XML: <?xml version="1.0" encoding="utf-8"?> <soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> <soap:Body> <PaymentNotification xmlns="http://apilistener.envoyservices.com"> <payment> <uniqueReference>ESDEUR11039872</uniqueReference> <epacsReference>74348dc0-cbf0-df11-b725-001ec9e61285</epacsReference> <postingDate>2010-11-15T15:19:45</postingDate> <bankCurrency>EUR</bankCurrency> <bankAmount>1.00</bankAmount> <appliedCurrency>EUR</appliedCurrency> <appliedAmount>1.00</appliedAmount> <countryCode>ES</countryCode> <bankInformation>Sean Wood</bankInformation> <merchantReference>ESDEUR11039872</merchantReference> </payment> </PaymentNotification> </soap:Body> </soap:Envelope> 如何获得“付款”元素? 我尝试parsing(PHP) $xml = simplexml_load_string($soap_response); $xml->registerXPathNamespace('soap', 'http://schemas.xmlsoap.org/soap/envelope/'); foreach ($xml->xpath('//payment') as $item) { print_r($item); } 结果是空的:(任何想法如何parsing它是正确的?

Symfony2:在服务中注入当前用户

我正在尝试将当前login的用户注入到服务中。 我的目标是扩展一些树枝function,根据用户的喜好输出。 在这个例子中,我想使用用户特定的时区输出任何date函数。 似乎没有办法将当前用户注入到服务中,这对我来说似乎很奇怪。 注入安全上下文时,即使用户已login,它也没有令牌 我正在使用FOS用户包。 services: … twigdate.listener.request: class: App\AppBundle\Services\TwigDateRequestListener arguments: [@twig, @security.context] tags: – { name: kernel.event_listener, event: kernel.request, method: onKernelRequest } <?php namespace App\AppBundle\Services; use Symfony\Component\HttpKernel\HttpKernelInterface; use Symfony\Component\HttpKernel\Event\GetResponseEvent; class TwigDateRequestListener { protected $twig; function __construct(\Twig_Environment $twig, SecurityContext $context) { $this->twig = $twig; //$this->user = $context->get…; var_dump($context); die; } public function onKernelRequest(GetResponseEvent $event) […]

“php.exe”不被识别为内部或外部命令,可操作程序或batch file

“php.exe”不被识别为内部或外部命令,可操作程序或batch file。 为什么即使我已经将PHP添加到环境variables中,也会发生此错误? 我的环境variablesPATH如下所示: C:\ Program Files \ NVIDIA Corporation \ PhysX \ Common; C:\ Program Files \ Common Files \ Microsoft Shared \ Windows Live; C:\ Program Files \ PC ……………文件\ QTSystem \; A:\ XAMPP \ PHP \ php.exe的 我正在使用Windows 7。

regexp在switch语句中

在PHP开关/ case语句中是否允许使用正则expression式以及如何使用它们?