Advertisement
P22DX

hilih.php

Jan 18th, 2020
232
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.40 KB | None | 0 0
  1. <?php
  2. /**
  3.  * File: hilih.php
  4.  * @author: Cvar1984 <gedzsarjuncomuniti@gmail.com>
  5.  * Date: 19.01.2020
  6.  * Last Modified Date: 19.01.2020
  7.  * Last Modified By: Cvar1984 <gedzsarjuncomuniti@gmail.com>
  8.  */
  9. $paragraf = 'Nama sAya budi';
  10. $pattern = '/a|u|e|o/i';
  11. $replace = 'i';
  12. $result = preg_replace($pattern, $replace, $paragraf);
  13. $result = strtolower($result);
  14. $result = ucwords($result);
  15. echo $result . PHP_EOL;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement