Are there any online resources or tools available for creating and sharing well-formatted PHP code snippets?

There are several online resources and tools available for creating and sharing well-formatted PHP code snippets. One popular option is GitHub Gists, where you can easily create and share code snippets with syntax highlighting. Another option is Pastebin, which allows you to share code snippets privately or publicly. Additionally, websites like CodePen and JSFiddle also support PHP code snippets and provide a platform for sharing and testing code.

<?php
echo "Hello, World!";
?>