Skip to content

Commit d39e704

Browse files
authored
Merge pull request #110878 from Grace-MacJones-MSFT/patch-38
(Azure CXP) Added a note explaining the stop-parsing symbol
2 parents d54d3d0 + 34658aa commit d39e704

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

articles/app-service/app-service-web-get-started-php.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,12 +67,16 @@ In the Cloud Shell, create a web app in the `myAppServicePlan` App Service plan
6767

6868
In the following example, replace `<app_name>` with a globally unique app name (valid characters are `a-z`, `0-9`, and `-`). The runtime is set to `PHP|7.0`. To see all supported runtimes, run [`az webapp list-runtimes`](/cli/azure/webapp?view=azure-cli-latest#az-webapp-list-runtimes).
6969

70+
7071
```azurecli-interactive
7172
# Bash
7273
az webapp create --resource-group myResourceGroup --plan myAppServicePlan --name <app_name> --runtime "PHP|7.0" --deployment-local-git
7374
# PowerShell
7475
az --% webapp create --resource-group myResourceGroup --plan myAppServicePlan --name <app_name> --runtime "PHP|7.0" --deployment-local-git
7576
```
77+
> [!NOTE]
78+
> The stop-parsing symbol `(--%)`, introduced in PowerShell 3.0, directs PowerShell to refrain from interpreting input as PowerShell commands or expressions.
79+
>
7680
7781
When the web app has been created, the Azure CLI shows output similar to the following example:
7882

0 commit comments

Comments
 (0)