Skip to content

Instantly share code, notes, and snippets.

@fetus-hina
Created November 29, 2011 11:14
Show Gist options
  • Save fetus-hina/1404449 to your computer and use it in GitHub Desktop.
Save fetus-hina/1404449 to your computer and use it in GitHub Desktop.
mb_str_replace() 説明ページ用使い方例
<?php
require_once(dirname(__FILE__) . '/mb_str_replace.function.php');
$subject = '赤パジャマ青パジャマ黄パジャマ';
$search = 'パジャマ';
$replace = '信号';
$result = mb_str_replace($search, $replace, $subject);
var_dump($result);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment