Questions tagged «php»

PHP是一种广泛使用的高级动态,面向对象和解释性脚本语言,主要用于服务器端Web开发。用于有关PHP语言的问题。



2
关于使用doctrine2删除级联
我试图做一个简单的例子,以学习如何从父表中删除一行并使用Doctrine2自动删除子表中的匹配行。 这是我正在使用的两个实体: Child.php: <?php namespace Acme\CascadeBundle\Entity; use Doctrine\ORM\Mapping as ORM; /** * @ORM\Entity * @ORM\Table(name="child") */ class Child { /** * @ORM\Id * @ORM\Column(type="integer") * @ORM\GeneratedValue(strategy="AUTO") */ private $id; /** * @ORM\ManyToOne(targetEntity="Father", cascade={"remove"}) * * @ORM\JoinColumns({ * @ORM\JoinColumn(name="father_id", referencedColumnName="id") * }) * * @var father */ private $father; } 父亲.php …

8
上游从上游读取响应头时发送了太大的头
我收到这些错误: 2014/05/24 11:49:06 [错误] 8376#0:* 54031上游发送太大的标头,同时从上游读取响应标头,客户端:107.21.193.210,服务器:aamjanata.com,请求:“ GET / the- gujarat-government /赞助的洗脑历程/%20https:/aamjanata.com/the-brainwash-chronicles-gujarat-government/赞助护脑,%20https:/aamjanata.com/the-brainwash-chronicles-由Gujarat-government赞助,%20https://aamjanata.com/the-brainwash-chronicles-sponsored-by-gujarat-government/,%20https:/aamjanata.com/the-brainwash-chronicles-sponsored-by- gujarat-government /,%20https:/aamjanata.com/the-brainwash-chronicles-sponsored-by-gujarat-government /,%20https:/aamjanata.com/the-brainwash-chronicles-sponsored-by-gujarat-government/ ,%20https:/aamjanata.com/the-brainwash-chronicles-sponsored-by-gujarat-government /,%20https:/ aamjanata。com / the-brainwash-chronicles-sponsored-by-gujarat-government /,%20https:/aamjanata.com/the-brainwash-chronicles-sponsored-by-gujarat-government /,%20https:/aamjanata.com/the- gujarat-government /赞助的洗脑历程/%20https:/aamjanata.com/the-brainwash-chronicles-gujarat-government/赞助护脑,%20https:/aamjanata.com/the-brainwash-chronicles-由Gujarat-government赞助,%20https://aamjanata.com/the-brainwash-chronicles-sponsored-by-gujarat-government/,%20https:/aamjanata.com/the-brainwash-chronicles-sponsored-by- gujarat-government /,%20https:/aamjanata.com/the-brainwash-chronicles-sponsored-by-gujarat-government/,%20https://aamjanata.com/the-brainwash-chronicles-sponsored-by-gujarat-government /,%20https:/aamjanata.com/the-brainwash-chronicles-sponsored by-gujarat-government /,%20https:/ aamjanata。com / the-brainwash-chronicles-sponsored-by-gujarat-government /,%20https:/aamjanata.com/the-brainwash-chronicles-sponsored-by-gujarat-government /,%20https:/aamjanata.com/the- gujarat-government /赞助的洗脑纪事/%20https://aamjanata.com/the-brainwash-chronicles-gujarat-government/赞助的百灵鸟https:/aamjanata.com/the-brainwash-chronicles-由古吉拉特邦政府赞助,%20ht 总是一样。网址重复并以逗号分隔。无法弄清楚是什么原因造成的。有人有主意吗? 更新:另一个错误: http request count is zero while sending response to client 这是配置。还有其他不相关的内容,但是此部分已添加/编辑 fastcgi_cache_path /var/nginx-cache …
227 nginx  php 


6
将DateTime转换为字符串PHP
我已经研究了很多站点,有关如何将PHP DateTime对象转换为String。我总是看到“从String到DateTime”而不是“从DateTime到String” 可以回显PHP DateTime,但是我想用PHP字符串函数处理DateTime。 我的问题是如何从这种代码开始使PHP dateTime对象成为字符串: $dts = new DateTime(); //this returns the current date time echo strlen($dts);
225 php  datetime 

5
PSR-0和PSR-4有什么区别?
最近,我阅读了有关名称空间及其有益之处的信息。我目前正在Laravel中创建一个项目,并试图从类映射自动加载转到命名空间。但是,我似乎无法理解PSR-0和PSR-4之间的实际区别。 我读过的一些资源是... 自动装弹机之战 Laracasts PSR-4自动加载 PSR-0 PSR-4 我的理解: PSR-4不会将下划线转换为目录分隔符 作曲者的某些特定规则导致目录结构变得复杂,这又使PSR-0命名间隔变得冗长,因此创建了PSR-4 解释差异的示例将是可理解的。

9
您如何加密和解密PHP字符串?
我的意思是: Original String + Salt or Key --> Encrypted String Encrypted String + Salt or Key --> Decrypted (Original String) 也许像这样: "hello world!" + "ABCD1234" --> Encrypt --> "2a2ffa8f13220befbe30819047e23b2c" (may be, for e.g) "2a2ffa8f13220befbe30819047e23b2c" --> Decrypt with "ABCD1234" --> "hello world!" 在PHP中,您该怎么做? 尝试使用Crypt_Blowfish,但对我不起作用。



14
使用PHP Mail()发送附件?
我需要通过邮件发送pdf文件,可以吗? $to = "xxx"; $subject = "Subject" ; $message = 'Example message with <b>html</b>'; $headers = 'MIME-Version: 1.0' . "\r\n"; $headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n"; $headers .= 'From: xxx <xxx>' . "\r\n"; mail($to,$subject,$message,$headers); 我想念什么?
224 php 

15
PHP接口的意义是什么?
接口允许您创建定义实现它的类的方法的代码。但是,您不能向这些方法添加任何代码。 抽象类使您可以做同样的事情,并向方法中添加代码。 现在,如果您可以使用抽象类实现相同的目标,那么为什么我们甚至需要接口的概念? 有人告诉我,它与从C ++到Java的OO理论有关,这是PHP的OO东西所基于的。这个概念在Java中有用但在PHP中没有用吗?这只是一种避免在抽象类中乱扔占位符的方法吗?我想念什么吗?
224 php  oop  interface  theory 

12
PHP-连接或直接在字符串中插入变量
我想知道,将PHP变量插入字符串的正确方法是什么? 这条路: echo "Welcome ".$name."!" 或者这样: echo "Welcome $name!" 这两种方法都可以在我的电脑上使用PHP v5.3.5。后者更短,更简单,但是我不确定第一种格式是否更好或是否被认为更合适。


4
如何在Laravel中使用多个数据库
我想在系统中合并多个数据库。大多数情况下,数据库是MySQL。但是将来可能会有所不同,即Admin可以生成这样的报告,该报告是使用异构数据库系统的来源。 所以我的问题是Laravel是否提供任何Facade来应对此类情况?还是任何其他具有更合适问题处理能力的框架是?
224 php  mysql  database  laravel 

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.