php

文字列を切って繋げるのにどちらが早いか調べた

php

頻繁にこんなのに出会う。 「受け取った文字列 "20110801" を "2011-08-01" にする」 文字列を切ったり繋いだりするのに、どちらが早いのかなーと思って調べた。

迷ってみたり

php

例1 db =& $db; } function setName($name) { $this->name = $name; } function setPosition($position) { $this->position = $position; } function create() { // create } function destroy() { // destroy …

extends と implements のメモ

php

extends aa(); # A - aa $a->bb(); # B - bb ?> implements

PHPのinclude()に相当することをPythonでやりたい

つまり別ファイルに記載されている関数を使いたい PHP find.php function findHuman(country) { // 処理する return result; } main.php include('./find.php'); $result = findHuman('japan'); こんな感じの事をPythonでやりたいの Python find.py def find…