Archives by date

You are browsing the site archives by date.

【PHP】画像をbase64エンコードする。

めも。

echo base64_encode(file_get_contents('/path/to/image.jpg'));

 

【PHP】単語の先頭文字を大文字にする。

めも。

$str = 'controller action';
var_dump(ucwords($str));

↓

string(17) "Controller Action"