Skip to content

Instantly share code, notes, and snippets.

View m3m0r7's full-sized avatar
🐱
$ cat /usr/bin/php

memory m3m0r7

🐱
$ cat /usr/bin/php
View GitHub Profile
<?php
/**
* あなたがどれくらい今日仕事したのか調べるやつです。
*/
mb_internal_encoding('UTF-8');
$files = 0;
$lines = 0;
$bytes = 0;
$mbytes = 0;
<?php
/**
* mb_count_chars
* @author @memory-agape
* @param string $string The examined string
* @param int $mode
* @return array|string
*/
function mb_count_chars ($string, $mode = 0) {