1<?php 2 3uv_fs_readlink(uv_default_loop(), "linkPath", function($buffer){ 4 var_dump($buffer); 5}); 6 7uv_run(); 8