File manager - Edit - /var/www/payraty/helpdesk/vendor/intervention/image/src/Traits/CanBuildFilePointer.php
Back
<?php declare(strict_types=1); namespace Intervention\Image\Traits; trait CanBuildFilePointer { /** * Transform the provided data into a pointer with the data as its content * * @param string $data * @return resource|false */ public function buildFilePointer(string $data) { $pointer = fopen('php://temp', 'rw'); fputs($pointer, $data); rewind($pointer); return $pointer; } }
| ver. 1.4 |
Github
|
.
| PHP 8.3.30 | Generation time: 0.77 |
proxy
|
phpinfo
|
Settings