推荐书籍:
- 入门篇:《PHP和MySQL Web开发(第四版)》
- 进阶篇:《深入PHP 面向对象、模式与实践》
- 钻研篇:《代码大全》《重构 改善既有代码的设计》《程序员修炼之道 从小工到专家》《人月神话》,其他:数据结构与算法、设计模式、安全、最佳实践。
笔试三题
1.如何判断质数
function check_zhishu($a) {
for($i=2; $i < $a ; $i++) {
if($a % $i == 0) {
echo $a. ‘不是质数‘;
exit;
}
}
echo $num. ‘是质数‘;
}
check_ss(122);
2.This is an Apply eBay 变成 Siht si na Ylppa yAbe
$str1 = ‘This is an Apply eBay‘;
function restr($str) {
$str1 = explode(‘ ‘, $str);
$temp = $str2 = ‘‘;
for ($i = 0; $i < count($str1); $i++) {
if (strlen($str1[$i]) > 2) {
if ($str1[$i] == ‘eBay‘) {
$str2. = $temp.substr($str1[$i], 0, 1);
$str2. = ucfirst(strrev(strtolower(substr($str1[$i], 1))));
} else {
$str2. = $temp.ucfirst(strrev(strtolower($str1[$i])));
}
} else {
$str2. = $temp.strrev(strtolower($str1[$i]));
}
$temp = ‘ ‘;
}
return $str2;
}
echo restr($str1);
3.电商订单与商品的数据结构图
时间: 2024-10-31 01:31:14