开发者

What is the type of this encoding?

开发者 https://www.devze.com 2023-02-19 17:41 出处:网络
i have an file is encoded to this format what type of this encoding please? <?php /*********************/

i have an file is encoded to this format what type of this encoding please?

<?php
/*********************/
/*                   */
/*  Version : 5.1.0  */
/*  Author  : RM     */
/*  Comment : 071223 */
/*          开发者_如何学Go         */
/*********************/

echo "ELF\x01\x02\x01\x00\x00\x00


That's an ELF header - a linux/bsd/solaris/bunch of others executable file.


The "\x01" is a string with C-style character escaping. PHP supports it in its double quoted strings too.
See http://www.php.net/manual/en/language.types.string.php#language.types.string.syntax.double

0

精彩评论

暂无评论...
验证码 换一张
取 消