本文整理汇总了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__);
}