wpseek.com
A WordPress-centric search engine for devs and theme authors
pclziputilrename › WordPress Function
Sincen/a
Deprecatedn/a
› pclziputilrename ( $p_src, $p_dest )
Defined at: |
|
Codex: |
No description yet.
Related Functions: pclziputiloptiontext, pclziputilpathreduction, pclziputiltranslatewinpath, plugin_basename, pclziputilcopyblock
Source
function PclZipUtilRename($p_src, $p_dest)
{
$v_result = 1;
// ----- Try to rename the files
if (!@rename($p_src, $p_dest)) {
// ----- Try to copy & unlink the src
if (!@copy($p_src, $p_dest)) {
$v_result = 0;
}
else if (!@unlink($p_src)) {
$v_result = 0;
}
}
// ----- Return
return $v_result;
}
// --------------------------------------------------------------------------------
// --------------------------------------------------------------------------------
// Function : PclZipUtilOptionText()
// Description :
// Translate option value in text. Mainly for debug purpose.
// Parameters :
// $p_option : the option value.
// Return Values :
// The option text value.
// --------------------------------------------------------------------------------