PhpRiot
Follow phpriot on Twitter
Sponsored Link
Become Zend Certified

Prepare for the ZCE exam using our quizzes (web or iPad/iPhone). More info...


When you're ready get 7.5% off your exam voucher using voucher CJQNOV23 at the Zend Store
Free iPad/iPhone App
Available on the App Store

  • PHP manual
  • Zend Framework manual
  • Smarty manual
  • PHP articles
  • PHP training

Copy an item

The copyItem() operation creates a copy of the item in the storage.

Note

Not all services support copying natively. If this is the case, the adapter will simulate the operation, fetching the item and storing it under the target path.

Example 100. Copying an item

<?php
$storage
->copyItem(
    
'/my/remote/path/picture.jpg',
    
'/anothor/remote/dir/picturecopy.jpg'
);

Zend Framework