Esempio n. 1
0
<?php

def_md('test_md', 5, function ($a) {
    echo '.';
    return $a . "\n";
});
echo test_md(1, str_repeat("a", 300));
echo test_md(1, str_repeat("a", 500));
?>
---
.1
.1
Esempio n. 2
0
<?php

def_md('test_md', 5, function ($a) {
    echo '.';
    return $a . "\n";
});
echo test_md(1, "a b");
echo test_md(1, "a b");
?>
---
.1
1