mirror of
https://github.com/php/php-src.git
synced 2025-08-15 21:48:51 +02:00

This is effectively removing ZPP tests, enabling warnings, and moving INI settings into the INI PHPT block
15 lines
253 B
PHP
15 lines
253 B
PHP
--TEST--
|
|
IntlBreakIterator::getText(): basic test
|
|
--EXTENSIONS--
|
|
intl
|
|
--FILE--
|
|
<?php
|
|
|
|
$bi = IntlBreakIterator::createWordInstance('pt');
|
|
var_dump($bi->getText());
|
|
$bi->setText('foo bar');
|
|
var_dump($bi->getText());
|
|
?>
|
|
--EXPECT--
|
|
NULL
|
|
string(7) "foo bar"
|