php
頻繁にこんなのに出会う。 「受け取った文字列 "20110801" を "2011-08-01" にする」 文字列を切ったり繋いだりするのに、どちらが早いのかなーと思って調べた。
例1 db =& $db; } function setName($name) { $this->name = $name; } function setPosition($position) { $this->position = $position; } function create() { // create } function destroy() { // destroy …
extends aa(); # A - aa $a->bb(); # B - bb ?> implements
つまり別ファイルに記載されている関数を使いたい PHP find.php function findHuman(country) { // 処理する return result; } main.php include('./find.php'); $result = findHuman('japan'); こんな感じの事をPythonでやりたいの Python find.py def find…