4.1 基本类型的封装类
// 字符串转int
Integer obj new Intreger("10");
int n new Integer("10");
int num Integer.parseInt("10");
// 字符串转float
float fl loat.parseFloat("10.0");
float f2 new Float("10.0"…
第16天
Web
[MRCTF2020]Ezpop
打开网站就是一段泄露的源代码:
<?php
//flag is in flag.php
//WTF IS THIS?
//Learn From https://ctf.ieki.xyz/library/php.html#%E5%8F%8D%E5%BA%8F%E5%88%97%E5%8C%96%E9%AD%94%E6%9C%AF%E6%96%B9%E6%B3%95
//And Crack…