摘要:
<?php interface KeyBoard{ public function make(); } interface Mouse{ public function make(); } class MechanicalKeyboard implements KeyBoard { public f 阅读全文
摘要:
tar 压缩包 单个文件压缩打包 tar czvf my.tar file1多个文件压缩打包 tar czvf my.tar file1 file2,...单个目录压缩打包 tar czvf my.tar dir1多个目录压缩打包 tar czvf my.tar dir1 dir2解包至当前目录: 阅读全文
摘要:
<?php error_reporting(E_ALL); class Person { public function getClass() { echo get_class($this).PHP_EOL; echo get_class(new self()).PHP_EOL; echo get_ 阅读全文