码迷,mamicode.com
首页 > 其他好文 > 详细

心得体会

时间:2017-02-09 00:23:28      阅读:148      评论:0      收藏:0      [点我收藏+]

标签:for   判断   ret   算法   exp   安全   exit   shu   else   

推荐书籍:
  1. 入门篇:《PHP和MySQL Web开发(第四版)》
  2. 进阶篇:《深入PHP 面向对象、模式与实践》
  3. 钻研篇:《代码大全》《重构 改善既有代码的设计》《程序员修炼之道 从小工到专家》《人月神话》,其他:数据结构与算法、设计模式、安全、最佳实践。
 
笔试三题
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.电商订单与商品的数据结构图

心得体会

标签:for   判断   ret   算法   exp   安全   exit   shu   else   

原文地址:http://www.cnblogs.com/GreenForestQuan/p/6380199.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!