Blogger Information
Blog 29
fans 0
comment 0
visits 19762
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
PHP尽量用中文是什么感觉?
牡丹飞
Original
648 people have browsed it

看看感觉吧!

  1. <?php
  2. $帮你找到需要数 = [
  3. '什么样子的数的仓库' => 'mysql',
  4. '数们放在那里' => 'localhost',
  5. '数的仓库叫什么' => '苹果',
  6. '数的仓库门口' => '3306',
  7. '数的样子' => 'utf8',
  8. '数的仓库门' => 'root',
  9. '数的仓库门钥匙' => 'root'
  10. ];
  11. //几个有名字的数据变成几个有名字的放数据的箱子
  12. extract($帮你找到需要数);
  13. //排排队
  14. $找到数的源头 = sprintf('%s:host=%s;dbname=%s',$什么样子的数的仓库,$数们放在那里,$数的仓库叫什么);
  15. try {
  16. //造个干活儿的
  17. $拿数的工人 = new PDO($找到数的源头,$数的仓库门,$数的仓库门钥匙,
  18. //工人关注度:小错也不放过
  19. [PDO::ATTR_ERRMODE => PDo::ERRMODE_WARNING]);
  20. //工人拿数儿有要求:只拿有名的数儿
  21. $拿数的工人->setAttribute(PDO::ATTR_DEFAULT_FETCH_MODE,PDO::FETCH_ASSOC);
  22. echo '安排拿数工人成功!';
  23. //一人一片儿天地
  24. echo '<hr>';
  25. //拿来的数儿,要一行一行的显摆
  26. foreach($拿数的工人->query('select 用户名,年龄 from 用户') as $一行数儿){
  27. extract($一行数儿);
  28. echo '咱名儿:'.$用户名.' 咱的生活经验:'.$年龄.'年啦!<br>';
  29. }
  30. echo '<hr>';
  31. echo '加个人儿'.'<br>';
  32. $放好了吗 = 加个人儿($拿数的工人,'王五',25);
  33. !$放好了吗 ?
  34. print '加个人儿的活儿,还做不好,老板儿原因在这里:'. print_r($拿数的工人->errorInfo()) :
  35. print '加好了' . $放好了吗 . '个人儿,唯一号是:' . $拿数的工人->lastInsertId();
  36. } catch(\Exception $犯错了吧) {
  37. die('工人干活儿遇到困难,老板快来帮忙: '. $犯错了吧->getMessage());
  38. }
  39. function 加个人儿($安排拿数工,$人名儿,$年头儿)
  40. {
  41. $加人暗号 = "insert into 用户(用户名,密码,年龄) values('{$人名儿}',md5('123'),{$年头儿})";
  42. return $安排拿数工 -> exec($加人暗号);
  43. }

感觉写着有些慢

可读性却很高,复用也方便。也许记个英文更快,哈哈!

Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
1 comments
ccc2020 2020-11-28 20:01:00
你太有才了
1 floor
Author's latest blog post