Let's say I have a function in a file in my website and I want to give someone else the ability to use it without giving him the code.if he uses the code below will it work?
<?php
include ('http://website.com/functions/test.php')
blabla("text");//an example function that makes replaces the text entered with "bla bla"
?>
would this return "blabla" or not ?