# read()

Similar to [**`fetch()`**](/vapm/system/fetch.md), you can use it to fetch results from your website, but you can also get content from a folder path that you need.

```php
/**
 * @throws Throwable
 *
 * This is a function used only to retrieve results from an address or file path via the file_get_contents method
 */
public static function read(string $path) : Promise;   
```

Example:

```php
$url = "https://www.google.com/";

System::read($url)->then(function($value) {
    var_dump($value);
})->catch(function($reason) {
    var_dump($reason);
});
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://venndev.gitbook.io/vapm/system/read.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
