convert_uuencode 个 php 文件
convert_uuencode a php file
我想用 uuencode 对 php 文件进行编码,以便与
一起使用
eval(gzuncompress(convert_uudecode("somedata");
我只找到了一种编码字符串的方法,但找不到编码完整 php 文件(或 php 代码)的方法。
谢谢!
先读取文件
编码内容,然后用它做任何你想做的事情。
您可以简单地读取文件的数据
$contentString = file_get_contents(PATH_TO_PHP/some.php)
adn 然后做同样的事情 eval(gzuncompress(convert_uudecode($contentString)));
更新
如果您需要将此字符串作为结果
<?php eval(gzuncompress(convert_uudecode("M>)S=6PEOVTBR_BL90,\x5c2(9D0;W+\x5c%.Q@UKL;O,7,K. ............. a")));
您必须执行以下操作
// Reading file content
$phpFileContent = file_get_content("PATH/some.php");
// Remove <?php and ?> from your content
$phpFileContent = str_replace(array('<?php', '?>'), '', $phpFileContent);
// Encoding and compressing
$phpFileContent = convert_uuencode( gzcompress($phpFileContent) );
// Your result string
$result = '<?php eval(gzuncompress(convert_uudecode("' . $phpFileContent . '")));';
//which you can write to some other php file with file_put_contensts
file_put_contents ( 'PATH_TO_RESULT_FILE/result.php' , $result);
我想用 uuencode 对 php 文件进行编码,以便与
一起使用eval(gzuncompress(convert_uudecode("somedata");
我只找到了一种编码字符串的方法,但找不到编码完整 php 文件(或 php 代码)的方法。
谢谢!
先读取文件
编码内容,然后用它做任何你想做的事情。
您可以简单地读取文件的数据
$contentString = file_get_contents(PATH_TO_PHP/some.php)
adn 然后做同样的事情 eval(gzuncompress(convert_uudecode($contentString)));
更新
如果您需要将此字符串作为结果
<?php eval(gzuncompress(convert_uudecode("M>)S=6PEOVTBR_BL90,\x5c2(9D0;W+\x5c%.Q@UKL;O,7,K. ............. a")));
您必须执行以下操作
// Reading file content
$phpFileContent = file_get_content("PATH/some.php");
// Remove <?php and ?> from your content
$phpFileContent = str_replace(array('<?php', '?>'), '', $phpFileContent);
// Encoding and compressing
$phpFileContent = convert_uuencode( gzcompress($phpFileContent) );
// Your result string
$result = '<?php eval(gzuncompress(convert_uudecode("' . $phpFileContent . '")));';
//which you can write to some other php file with file_put_contensts
file_put_contents ( 'PATH_TO_RESULT_FILE/result.php' , $result);