pclziputiltranslatewinpath [ WordPress Function ]
pclziputiltranslatewinpath ( $p_path, $p_remove_disk_letter = true )
| Defined at: |
|
Benzer Fonksiyonlar: pclziputilrename, pclziputiloptiontext, pclziputilpathreduction, pclziputilpathinclusion, _wp_translate_postdata
No description yet.
Source
<?php
function PclZipUtilTranslateWinPath($p_path, $p_remove_disk_letter=true)
{
if (stristr(php_uname(), 'windows')) {
// ----- Look for potential disk letter
if (($p_remove_disk_letter) && (($v_position = strpos($p_path, ':')) != false)) {
$p_path = substr($p_path, $v_position+1);
}
// ----- Change potential windows directory separator
if ((strpos($p_path, '\\') > 0) || (substr($p_path, 0,1) == '\\')) {
$p_path = strtr($p_path, '\\', '/');
}
}
return $p_path;
}
// --------------------------------------------------------------------------------
?>
?>
Examples [ wp-snippets.com ]
Google Arama Sonuçlarý
- Docs for page pclzip.lib.php
/administrator/includes/pcl/pclzip.lib.php. Description ...
www.mambolearn.com - PHPXRef 0.7 : WordPress : Detail view of class-pclzip.php
PclZipUtilOptionText() PclZipUtilTranslateWinPath(). Class: PclZip .... PclZipUtilTranslateWinPath($p_path, $p_remove_disk_letter=true) X-Ref. No description ...
phpxref.ftwr.co.uk - Docs for page class-pclzip.php
/wp-admin/includes/class-pclzip.php. Description. Description ...
phpdoc.wordpress.org - Docs for page pclzip.lib.php - b2evolution technical documentation
Mar 6, 2010 ... [ Top ]. PclZipUtilTranslateWinPath [line 5677]. void PclZipUtilTranslateWinPath( $p_path, [ $p_remove_disk_letter = true] ) ...
doc.b2evo.net