html
<script>
function data(msg){
alert(msg)}
</script>
<script type="text/javascript" src="http://www.seven.com/8-13/file.php?callback=data"></script>
php
$str="hello world";
echo $callback."('".$str."')";//data(str)
html
<script>
function data(msg){
alert(msg) <script type="text/javascript" src="http://www.seven.com/8-13/file.php?callback=data"></script>
php