本文整理匯總了PHP中JLanguage::get方法的典型用法代碼示例。如果您正苦於以下問題:PHP JLanguage::get方法的具體用法?PHP JLanguage::get怎麽用?PHP JLanguage::get使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類JLanguage
的用法示例。
在下文中一共展示了JLanguage::get方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: testGet
/**
* Test...
*
* @covers JLanguage::get
* @todo Implement testGet().
*
* @return void
*/
public function testGet()
{
$this->assertNull(
$this->object->get('noExist')
);
$this->assertEquals(
'abc',
$this->object->get('noExist', 'abc')
);
// Note: property = tag, returns en-GB (default language)
$this->assertEquals(
'en-GB',
$this->object->get('tag')
);
// Note: property = name, returns English (United Kingdom) (default language)
$this->assertEquals(
'English (United Kingdom)',
$this->object->get('name')
);
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
示例2: testGet
/**
* Test...
*
* @return void
*/
public function testGet()
{
$this->assertNull($this->object->get('noExist'));
$this->assertEquals('abc', $this->object->get('noExist', 'abc'));
// Note: property = tag, returns en-GB (default language)
$this->assertEquals('en-GB', $this->object->get('tag'));
// Note: property = name, returns English (en-GB) (default language)
$this->assertEquals('English (en-GB)', $this->object->get('name'));
}
示例3: testGet
/**
* @todo Implement testGet().
*/
public function testGet()
{
// This method get a matadata language property
$property1 = '';
$property2 = 'noExist';
$property3 = 'tag';
$property4 = 'name';
$default = null;
$lang = new JLanguage('');
// If not property or does not exist, returns null
$this->assertNull($lang->get($property1, $default));
$this->assertNull($lang->get($property2, $default));
// property = tag, returns en-GB (default language)
$this->assertEquals('en-GB', $lang->get($property3, $default), 'Line: ' . __LINE__);
$this->assertNotEquals('es-ES', $lang->get($property3, $default), 'Line: ' . __LINE__);
// property = name, returns English (United Kingdom) (default language)
$this->assertEquals('English (United Kingdom)', $lang->get($property4, $default), 'Line: ' . __LINE__);
$this->assertNotEquals('Spanish (Spain)', $lang->get($property4, $default), 'Line: ' . __LINE__);
}