I never used any obfuscator, and wondered if it's possible to obfuscate for example a single function in a PHP file with Ioncube, and keep the others non-obfuscated in the same file?
关注
码龄 粉丝数 原力等级 --
- 被采纳
- 被点赞
- 采纳率

已采纳
ioncube - 混淆php文件中的单个函数
收起
- 写回答
- 好问题 0 提建议
- 关注问题
微信扫一扫
点击复制链接分享
- 邀请回答
- 编辑 收藏 删除 结题
- 收藏 举报
1条回答 默认 最新
- 关注
码龄 粉丝数 原力等级 --
- 被采纳
- 被点赞
- 采纳率
douhu2898 2018-06-18 01:10关注ionCube is a compiler rather than a source obfuscator, and it is not possible to protect a single function as bytecode and source code cannot be mixed within a single file. The way to approach this would be to refactor your code so that the single function you want to protect is in its own file. If the function is a method, you provide a delegate method, or try having the method in a new class within the class hierarchy that is protected.
本回答被题主选为最佳回答 , 对您是否有帮助呢? 本回答被专家选为最佳回答 , 对您是否有帮助呢? 本回答被题主和专家选为最佳回答 , 对您是否有帮助呢?解决 无用评论 打赏举报微信扫一扫
点击复制链接分享
编辑预览轻敲空格完成输入- 显示为
- 卡片
- 标题
- 链接
评论按下Enter换行,Ctrl+Enter发表内容
编辑
预览

轻敲空格完成输入
- 显示为
- 卡片
- 标题
- 链接
报告相同问题?
提交
- 2014-09-14 08:51回答 5 已采纳 You can simply use phpinfo(). If you want to check it's loaded or not, you can use extension_loade
- 2010-11-11 02:34回答 3 已采纳 check your php.ini, is there something like zend_extension=ioncube_loader_lin_5.2.so? if not add i
- 2015-12-13 14:45回答 1 已采纳 Example of fetching both $_GET and $_POST and write it to some logfile: <?php $rawpost = print
- 2022-07-14 02:30php-ioncube decoder php script
- 2015-07-06 22:26回答 1 已采纳 Depends on your setup, mostly. In some cases such as CPanel* and certain shared hosting plans, you
- 2017-02-08 12:33回答 1 已采纳 There are Multiple Errors in the code. Here is the List! Syntax Error : MultiLine Comments Line
- 2012-10-08 06:23回答 1 已采纳 From the docs of dl(): 5.3.0: dl() is now disabled in some SAPIs due to stability issues. T
- 2022-07-09 15:25ioncube11 for centos版,支持php7.1-php7.4版本,将目录里so文件全部拷贝到php下的module目录下,将00-ioncube.ini文件拷贝到/etc/php.d/里,重新启动apache服务,将里面loader-wizard.php文件拷贝到网站根目录下,...
- 2016-07-01 12:24回答 1 已采纳 You can not solve your issue by adding MySQLi to php.ini, here you have install real mysqli extens
- 2014-04-25 01:03回答 1 已采纳 You can download an evaluation of the ionCube software via http://ioncu.be/eev If you avail yours
- 2013-12-03 11:02回答 1 已采纳 https://bugs.php.net/bug.php?id=37476 Says is_readable throws this warning for not existing files
- 2022-08-28 02:38国外找的PHP加密文件解密工具IonCube_Decoder-master.zip
- 2020-03-14 05:16- **使用编码文件与ionCube Loader**:编码后的PHP文件需要配合ionCube Loader才能正常运行。Loader是一个动态链接库,它解析并执行由ionCube Encoder处理过的PHP代码。 - **用户指南符号**:文档中可能包含各种...
- 2021-10-03 08:20在提供的压缩包中,"php53.ini" 文件很可能是为PHP 5.3版本定制的ini配置文件示例,其中包含了启用ionCube Loader所需的所有配置。可能的内容包括: ```ini [ionCube Loader] zend_extension=/path/to/ioncube/...
- 2021-10-03 20:49标题中的"unphp_ioncubedecode_ionCube_unphp_php_"表明这是一个关于解密和逆向工程被ionCube编码的PHP代码的主题。在IT领域,尤其是PHP开发和安全分析中,ionCube是一个广泛使用的软件,它提供了一种方式来保护PHP...
- 2022-07-14 04:11EasyToYou is a decoder of IonCube, as the name indicates, here you can decode the files encrypted with IonCube easily. We have developers working every day to keep the site and the decoder updated. If...
- 2018-06-10 02:12`php5.6 ioncube解密文件`这个主题就是关于如何在PHP 5.6环境中对使用ionCube扩展加密的代码进行解密和理解的教程。ionCube是一种广泛使用的PHP代码保护工具,它允许开发者将源代码编译为无法直接阅读的格式,从而...
- 2021-07-01 15:53ionCube Loader 是一款免费的应用程序,它运行由 ionCube PHP Encoder 编码的文件,同时提高 PHP 应用程序的运行速度。 优点: - 使用户能够运行由 ionCube PHP Encoder 编码的文件
- 2021-09-30 18:074. **PHP的线程安全性**: 在PHP中,线程安全(TS)和非线程安全(NTS)版本主要与是否在多线程环境下运行有关。非线程安全版本通常用于Apache HTTP Server搭配mod_php的情况,因为这种配置下的PHP不涉及多线程。 5....
- 2019-09-06 19:19在PHP中,混淆通常涉及变量、函数名的重命名,以及代码结构的调整。而加密则更进一步,它对源代码进行编码,使其在未解密前无法执行。"PHP混淆类加密解密工具"结合了这两种技术,为PHP代码提供了双重保护。 该压缩...
- 没有解决我的问题, 去提问
联系我们(工作时间:8:30-22:00)
400-660-0108kefu@csdn.net在线客服
- 京ICP备19004658号
- 经营性网站备案信息
公安备案号11010502030143
- 营业执照
- 北京互联网违法和不良信息举报中心
- 家长监护
- 中国互联网举报中心
- 网络110报警服务
- Chrome商店下载
- 账号管理规范
- 版权与免责声明
- 版权申诉
- 出版物许可证
- ©1999-2025北京创新乐知网络技术有限公司