From 0b6122084617006d829397a10300ab9aebd5898e Mon Sep 17 00:00:00 2001 From: gccgdb1234 Date: Mon, 22 Aug 2022 09:13:38 +0800 Subject: [PATCH] docs: add some files from zh to en --- docs/en/07-develop/01-connect/_connect_php.mdx | 3 +++ docs/en/07-develop/03-insert-data/_php_sql.mdx | 3 +++ docs/en/07-develop/03-insert-data/_php_stmt.mdx | 3 +++ docs/en/07-develop/04-query-data/_php.mdx | 3 +++ docs/examples/rust/Cargo.toml | 2 -- 5 files changed, 12 insertions(+), 2 deletions(-) create mode 100644 docs/en/07-develop/01-connect/_connect_php.mdx create mode 100644 docs/en/07-develop/03-insert-data/_php_sql.mdx create mode 100644 docs/en/07-develop/03-insert-data/_php_stmt.mdx create mode 100644 docs/en/07-develop/04-query-data/_php.mdx delete mode 100644 docs/examples/rust/Cargo.toml diff --git a/docs/en/07-develop/01-connect/_connect_php.mdx b/docs/en/07-develop/01-connect/_connect_php.mdx new file mode 100644 index 0000000000..dbad72bc19 --- /dev/null +++ b/docs/en/07-develop/01-connect/_connect_php.mdx @@ -0,0 +1,3 @@ +```php title="εŽŸη”ŸθΏžζŽ₯" +{{#include docs/examples/php/connect.php}} +``` diff --git a/docs/en/07-develop/03-insert-data/_php_sql.mdx b/docs/en/07-develop/03-insert-data/_php_sql.mdx new file mode 100644 index 0000000000..78cd663ec2 --- /dev/null +++ b/docs/en/07-develop/03-insert-data/_php_sql.mdx @@ -0,0 +1,3 @@ +```php +{{#include docs/examples/php/insert.php}} +``` diff --git a/docs/en/07-develop/03-insert-data/_php_stmt.mdx b/docs/en/07-develop/03-insert-data/_php_stmt.mdx new file mode 100644 index 0000000000..3bb7b2f8da --- /dev/null +++ b/docs/en/07-develop/03-insert-data/_php_stmt.mdx @@ -0,0 +1,3 @@ +```php +{{#include docs/examples/php/insert_stmt.php}} +``` diff --git a/docs/en/07-develop/04-query-data/_php.mdx b/docs/en/07-develop/04-query-data/_php.mdx new file mode 100644 index 0000000000..bcafd1cfbc --- /dev/null +++ b/docs/en/07-develop/04-query-data/_php.mdx @@ -0,0 +1,3 @@ +```go +{{#include docs/examples/php/query.php}} +``` diff --git a/docs/examples/rust/Cargo.toml b/docs/examples/rust/Cargo.toml deleted file mode 100644 index 136d09ffbb..0000000000 --- a/docs/examples/rust/Cargo.toml +++ /dev/null @@ -1,2 +0,0 @@ -[workspace] -members = ["restexample", "nativeexample"] -- GitLab