* Inserts a document in the database at the specified path. * * @param string $path filesystem-like path * @param string $input XML string */
($path, $input)
| 110 | * @param string $input XML string |
| 111 | */ |
| 112 | public function add($path, $input) |
| 113 | { |
| 114 | $this->sendCmd(9, $path, $input); |
| 115 | } |
| 116 | |
| 117 | /** |
| 118 | * Replaces content at the specified path by the given document. |