gpt4 book ai didi

php - NetBeans、PhpStorm... 自定义 PHP 扩展的代码完成

转载 作者:行者123 更新时间:2023-12-04 05:57:55 26 4
gpt4 key购买 nike

我已经用 C 构建了一个自定义的 PHP 扩展并将它包含在 php.ini 中。现在我想要一个支持我的自定义扩展的代码完成的 IDE。我使用了 netbeans ide,但目前正在测试 phpstorm。两者都没有显示自定义 php 扩展的代码完成:(

我需要在我的扩展中插入特殊的东西吗?

最佳答案

Netbeans 使用称为“ stub ”的假 php 文件,这些文件可以包含在您的项目中(只需让它们位于 netbeans 扫描的某个位置即可。

内置 php 函数的示例:(请参阅 NetbeansFolder/php/phpstubs,或在 netbeans 中按 ctrl-click 在 native php 函数上)。

/**
* (PHP 4 &gt;= 4.2.0, PHP 5)<br/>
* Changes all keys in an array
* @link http://php.net/manual/en/function.array-change-key-case.php
* @param array $input <p>
* The array to work on
* </p>
* @param int $case [optional] <p>
* Either <b>CASE_UPPER</b> or
* <b>CASE_LOWER</b> (default)
* </p>
* @return array an array with its keys lower or uppercased, or false if
* <i>input</i> is not an array.
*/
function array_change_key_case (array $input, $case = 'CASE_LOWER') {}

关于php - NetBeans、PhpStorm... 自定义 PHP 扩展的代码完成,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9295182/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com