这种编码的类型是什么?

时间:2011-03-26 11:30:54

标签: php encryption encoding character-encoding

我有一个文件被编码为这种格式请用哪种类型的编码?

<?php
/*********************/
/*                   */
/*  Version : 5.1.0  */
/*  Author  : RM     */
/*  Comment : 071223 */
/*                   */
/*********************/

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

2 个答案:

答案 0 :(得分:2)

这是一个ELF标题 - 一个linux / bsd / solaris /一堆其他可执行文件。

答案 1 :(得分:2)

"\x01"是一个带有C风格字符转义的字符串。 PHP也支持双引号字符串 见http://www.php.net/manual/en/language.types.string.php#language.types.string.syntax.double