本文整理汇总了PHP中Espo\Core\Utils\Util::toFormat方法的典型用法代码示例。如果您正苦于以下问题:PHP Util::toFormat方法的具体用法?PHP Util::toFormat怎么用?PHP Util::toFormat使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Espo\Core\Utils\Util
的用法示例。
在下文中一共展示了Util::toFormat方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: testToFormat
public function testToFormat()
{
$this->assertEquals('/Espo/Core/Utils', Util::toFormat('/Espo/Core/Utils', '/'));
$this->assertEquals('\\Espo\\Core\\Utils', Util::toFormat('/Espo/Core/Utils', '\\'));
$this->assertEquals('/Espo/Core/Utils', Util::toFormat('\\Espo\\Core\\Utils', '/'));
$this->assertEquals('\\Espo\\Core\\Utils', Util::toFormat('\\Espo\\Core\\Utils', '\\'));
}
示例2: getFileName
/**
* Get a filename without the file extension
*
* @param string $filename
* @param string $ext - extension, ex. '.json'
*
* @return array
*/
public function getFileName($fileName, $ext = '')
{
if (empty($ext)) {
$fileName = substr($fileName, 0, strrpos($fileName, '.', -1));
} else {
if (substr($ext, 0, 1) != '.') {
$ext = '.' . $ext;
}
if (substr($fileName, -strlen($ext)) == $ext) {
$fileName = substr($fileName, 0, -strlen($ext));
}
}
$exFileName = explode('/', Utils\Util::toFormat($fileName, '/'));
return end($exFileName);
}