c语言
1234567891011121314151617#include <stdio.h> #define LENGTH 10 #define WIDTH 5#define NEWLINE '\n' int main(){ int area; area = LENGTH * WIDTH; printf("value of area : %d", area); printf("%c", NEWLINE); return 0;}
12345678910111213
2025-11-043.3k 字16 分钟
PHP序列化
PHP序列化整理
phar&&pop链
phar://是数据流的包装器,相当于压缩
本地实验
1234567891011121314151617181920212223242526272829<?phpclass B { public $name; public function __destruct() { echo $this->name; }}$phar = new Phar("test.phar");//创建一个Phar类实例$phar->startB