• 心得体会


    推荐书籍:
    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.电商订单与商品的数据结构图

    您的资助是我最大的动力!
    金额随意,欢迎来赏!

    如果,您认为阅读这篇博客让您有些收获,不妨点击一下右下角的推荐按钮。
    如果,您希望更容易地发现我的新博客,不妨点击一下绿色通道的关注我

    如果,想给予我更多的鼓励,求打

    因为,我的写作热情也离不开您的肯定支持,感谢您的阅读!

  • 相关阅读:
    ADPlus
    'telnet' is not recognized as an internal or external command
    图片二进制上传2
    window.opener返回值的用法
    UrlRewriter 重写的问题
    缩略图 水印
    读取二进制图片问题
    正则表达式匹配问题
    .NET读excl数据
    js调用其他页面输出内容
  • 原文地址:https://www.cnblogs.com/GreenForestQuan/p/6380199.html
Copyright © 2020-2023  润新知