diff options
author | foobar <sniper@php.net> | 2005-06-27 10:34:42 +0000 |
---|---|---|
committer | foobar <sniper@php.net> | 2005-06-27 10:34:42 +0000 |
commit | 8eb44394cbf4cb73e72b7ed9b07308309c7d35fc (patch) | |
tree | 15a84245a2741657d52eb55e09aaec26acb9c864 /ext/mysqli/tests/065.phpt | |
parent | 0b351209217c2e2ec12a4b5a17e67dc851de6bdd (diff) | |
download | php-git-8eb44394cbf4cb73e72b7ed9b07308309c7d35fc.tar.gz |
set_charset() is only available in mysql versions > 4.1.12
Diffstat (limited to 'ext/mysqli/tests/065.phpt')
-rw-r--r-- | ext/mysqli/tests/065.phpt | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/ext/mysqli/tests/065.phpt b/ext/mysqli/tests/065.phpt index 950a10a437..d0fa071169 100644 --- a/ext/mysqli/tests/065.phpt +++ b/ext/mysqli/tests/065.phpt @@ -3,6 +3,9 @@ set character set --SKIPIF-- <?php require_once('skipif.inc'); +if (!function_exists('mysqli_set_charset')) { + die('skip mysqli_set_charset() not available'); +} ?> --FILE-- <?php |