如何将数组传递给AngularJS?

Array (
  0 => 
  Person::array (
      'name' => 'Paulo',
      'age' => 15,
    )


app.controller('myCrtl', function ($scope, $http, $timeout) {
 $http.get('ajax/getPerson.php').success(function(data){
 $scope.list = data;

...

I do not want the data to be visible in getPessoa.php. There is some other way to move my data (array) for AngularJS so that it is hidden?

UPDATE:

$myArray;

<div ng-app="">
  <ul>
    <li ng-repeat="myArray in names">
      {{ names.x }}
      {{ names.y }}
    </li>
  </ul>
</div>