содержимое вместо пути в оболочке
Pngquant имеет следующий пример для php // '-' makes it use stdout, required to save to $compressed_png_content variable // '<' makes it read from the given file path // escapeshellarg() makes this safe to use with any path $compressed_png_content = shell_exec("pngquant –quality=$min_quality-$max_quality – < ".escapeshellarg( $path_to_png_file)); Я хочу заменить $path_of_file фактическим содержимым. Это позволит избежать […]