Chris
- 活动总数 22
- 最后的活动
- 成员加入日期
- 关注 0 名用户
- 关注者数 0 名用户
- 投票数 1
- 订阅数 7
-
Chris 创建了一个帖子, PHPStorm " because it already exists and is a file."
I'm trying to deploy development files from a Windows 10 (latest build) machine running PHPStorm (latest build) via a local LAN. The server is running Ubuntu 20.04. I am getting the following error... -
Chris 创建了一个帖子, PHPStorm and error messages
When I'm currently coding using PHPStorm I tend to have a window open to the Linux server in which I'm "tailing" the error log for the site I'm working on. To do this I have to SSH into the server ... -
-
Chris 进行了评论, -
-
Chris 创建了一个帖子, Code inspection not recognising table names
Hi all, I have a project open in PHPStorm and on the right it is showing my connection to the database and relevant schema. I can expand the tables and see the fields etc in the database "window"... -
-
-
Chris 创建了一个帖子, Classes within Classes
Hi all, I have a class thus: [code] class Webpage{ public $system_licence = false; public function __construct() { $system_licence = new Licence; $system_licence->is_valid = tr... -
Chris 创建了一个帖子, Class error with foreach?
If I define a class thus: class item { // some variables go here public function add() { // some code goes here return $result; }}$things = new item;foreach($things as $thi...