Ibrahim Abdo
- 活动总数 20
- 最后的活动
- 成员加入日期
- 关注 0 名用户
- 关注者数 0 名用户
- 投票数 5
- 订阅数 5
-
Ibrahim Abdo 进行了评论, -
-
-
Ibrahim Abdo 创建了一个帖子, Prepend IDE version in running queries
In older versions of IDEs I remember that each query was executed with a comment prepended to them that included the IDE name and version, like:/* DataGrip 2024.1 */ SELECT * FROM users;But it's no... -
Ibrahim Abdo 创建了一个帖子, Reference class attributes in strings
Hello,If I have the following class with the PhpDoc above: /** * @property int|null $id * @property string|null $name */ class Profile { const DB_TABLE = 'profiles'; } And then somewhere else in... -
-
Ibrahim Abdo 进行了评论, -
Ibrahim Abdo 创建了一个帖子, Alias for a define() function
Hello, Let's say I have the following code: <?phpdefine('TEST', 'a'); echo TEST; I would like to replace the define() function with a wrapper, like so: <?php function config($key, $value) ... -
-
Ibrahim Abdo 创建了一个帖子, 已回答Run sql statement programatically
Hello, Is there a way to run an SQL statement programatically through database api? I am trying to build a dialog panel where the user will choose several options, which will ultimately generate ...